summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/navigation/home_navigation.xml
blob: d500d165b19e3b2b463042930040930528632a27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/home_navigation"
    app:startDestination="@id/gamesFragment">

    <fragment
        android:id="@+id/gamesFragment"
        android:name="org.yuzu.yuzu_emu.ui.GamesFragment"
        android:label="PlatformGamesFragment" />

    <fragment
        android:id="@+id/homeSettingsFragment"
        android:name="org.yuzu.yuzu_emu.fragments.HomeSettingsFragment"
        android:label="HomeSettingsFragment" />

    <fragment
        android:id="@+id/firstTimeSetupFragment"
        android:name="org.yuzu.yuzu_emu.fragments.SetupFragment"
        android:label="FirstTimeSetupFragment" >
        <action
            android:id="@+id/action_firstTimeSetupFragment_to_gamesFragment"
            app:destination="@id/gamesFragment"
            app:popUpTo="@id/firstTimeSetupFragment"
            app:popUpToInclusive="true" />
    </fragment>

</navigation>